# generate 100 random numbers for x and y
x = np.random.randn(1000)
y = np.random.randn(1000)
px.scatter(
x=x,
y=y,
title="Random Scatter Plot",
labels={"x": "x", "y": "y"},
width=800,
height=600
)
img = Image.open('../images/4158627220_A_bowling_ball_rolling_down_a_hill.png')
fig = plt.imshow(img)
plt.axis('off')
fig.axes.get_xaxis().set_visible(False)
fig.axes.get_yaxis().set_visible(False)